text/template/parse.lexer.start (field)

16 uses

	text/template/parse (current package)
		lex.go#L119: 	start        Pos    // start position of this item
		lex.go#L172: 	i := item{t, l.start, l.input[l.start:l.pos], l.startLine}
		lex.go#L173: 	l.start = l.pos
		lex.go#L193: 	l.line += strings.Count(l.input[l.start:l.pos], "\n")
		lex.go#L194: 	l.start = l.pos
		lex.go#L217: 	l.item = item{itemError, l.start, fmt.Sprintf(format, args...), l.startLine}
		lex.go#L218: 	l.start = 0
		lex.go#L278: 				trimLength = rightTrimLength(l.input[l.start:l.pos])
		lex.go#L281: 			l.line += strings.Count(l.input[l.start:l.pos], "\n")
		lex.go#L293: 	if l.pos > l.start {
		lex.go#L294: 		l.line += strings.Count(l.input[l.start:l.pos], "\n")
		lex.go#L355: 	l.line += strings.Count(l.input[l.start:l.pos], "\n")
		lex.go#L487: 			word := l.input[l.start:l.pos]
		lex.go#L589: 		return l.errorf("bad number syntax: %q", l.input[l.start:l.pos])
		lex.go#L594: 			return l.errorf("bad number syntax: %q", l.input[l.start:l.pos])